PATHMac OS 8 and 9 Developer Documentation > Human Interface Toolbox > Appearance Manager >

Programming With the Appearance Manager


Theme Pop-Up Arrow Size Constants

You can use a constant of type ThemePopupArrowSize in the function DrawThemePopupArrow to specify the size of the pop-up arrow that is drawn on a button. The ThemePopupArrowSize constants are available with Appearance Manager 1.1 and later.

enum {
    kThemeArrow3pt  = 0,
    kThemeArrow5pt  = 1,
    kThemeArrow7pt  = 2,
    kThemeArrow9pt  = 3
};
typedef UInt16 ThemePopupArrowSize;

Constant descriptions

kThemeArrow3pt
Identifies a pop-up arrow with a 3-pixel base.
kThemeArrow5pt
Identifies a pop-up arrow with a 5-pixel base.
kThemeArrow7pt
Identifies a pop-up arrow with a 7-pixel base.
kThemeArrow9pt
Identifies a pop-up arrow with a 9-pixel base.

© 1999 Apple Computer, Inc. – (Last Updated 29 April 99)